home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / cat1.c < prev    next >
C/C++ Source or Header  |  1990-09-07  |  561b  |  30 lines

  1. /* cat1.c: Utility program, compiled in Microsoft QuickC
  2.  
  3. Add to program list:    cat.c,  setargv.obj
  4.  
  5. Note:   Extended dictionary flag must be set off
  6.         (Options-Make-Linker Flags)
  7.  
  8. Usage:  cat1 filename.ext ...
  9.  
  10. This generates a list of files matching filename.ext
  11. This does not concatenate files!!!!
  12.  
  13. */
  14.  
  15. #include <stdio.h>
  16. #include <string.h>
  17.  
  18. main ( int argc, char *argv[])
  19. {
  20.     int i;
  21.  
  22.     /* List all command line arguments (filenames) */
  23.     for ( i = 1; i < argc; i++ )
  24.         puts ( strupr( argv[i] ));
  25.  
  26.     /* All done */
  27.     return(0);
  28. }
  29.  
  30.